Function isotope::parser::ws[][src]

pub fn ws(input: &str) -> IResult<&str, &str>
Expand description

Parse whitespace between isotope identifiers

This includes both actual whitespace and comments

Example

assert_eq!(
    ws("  /* multiline // comment */ // line comment \ndone").unwrap().0,
    "done"
);